home *** CD-ROM | disk | FTP | other *** search
- ############################################################
- #
- # Makefile for ledump.c using the Borland compiler/linker
- # Chap. 10, Undocumented Windows File Formats, published by
- # R&D Books, an imprint of Miller Freeman, Inc.
- #
- # Copyright 1997, Mike Wallace and Pete Davis
- #
- # Environment variable requirements:
- #
- # 1) 'bcc' must be in your path
- # 2) Change the -I argument to the
- # 'include' subdirectory for your compiler
- # 3) Change the -L argument to the
- # 'lib' subdirectory for your compiler
- #
- # Compile the program with: make -fmakefile.bor
- #
- ############################################################
-
- PROG = LEDUMP
- HEADERS = LEDUMP.H
-
- $(PROG).EXE: $(PROG).C $(HEADERS)
- bcc -mm -Id:\bc45\include -Ld:\bc45\lib $(PROG).C
-
-